All files / web/src/app/api/admin/feature-flags/[key]/overrides/[userId] route.ts

0% Statements 0/28
0% Branches 0/1
0% Functions 0/1
0% Lines 0/28

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29                                                         
import { NextResponse } from 'next/server'
import { withAuth } from '@/lib/auth/withAuth'
import { deleteOverride } from '@/lib/feature-flags'

/**
 * DELETE /api/admin/feature-flags/[key]/overrides/[userId]
 *
 * Remove a per-user override (admin only).
 */
export const DELETE = withAuth(
  async (_request, { params }) => {
    const { key, userId } = (await params) as { key: string; userId: string }

    try {
      const deleted = await deleteOverride(key, userId)

      if (!deleted) {
        return NextResponse.json({ error: 'Override not found' }, { status: 404 })
      }

      return NextResponse.json({ success: true, flagKey: key, userId })
    } catch (error) {
      console.error('[feature-flags] Delete override failed:', error)
      return NextResponse.json({ error: 'Failed to delete override' }, { status: 500 })
    }
  },
  { role: 'admin' }
)